home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 37 / IOPROG_37.ISO / SOFT / Multilizer.exe / disk1 / data1.cab / data1 / [Group9]VCL Source Standard / ivmlcons.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1999-08-12  |  686 b   |  34 lines

  1. unit IvMlCons;
  2.  
  3. {$I IVMULTI.INC}
  4.  
  5. interface
  6.  
  7. {$IFDEF IVWIDE}
  8. resourcestring
  9.   SMsgDlgWarning = 'Warning';
  10.   SMsgDlgError = 'Error';
  11.   SMsgDlgInformation = 'Information';
  12.   SMsgDlgConfirm = 'Confirm';
  13.   SMsgDlgYes = '&Yes';
  14.   SMsgDlgNo = '&No';
  15.   SMsgDlgOK = 'OK';
  16.   SMsgDlgCancel = 'Cancel';
  17.   SMsgDlgHelp = '&Help';
  18.   SMsgDlgHelpNone = 'No help available';
  19.   SMsgDlgHelpHelp = 'Help';
  20.   SMsgDlgAbort = '&Abort';
  21.   SMsgDlgRetry = '&Retry';
  22.   SMsgDlgIgnore = '&Ignore';
  23.   SMsgDlgAll = '&All';
  24.   SMsgDlgNoToAll = 'N&o to All';
  25.   SMsgDlgYesToAll = 'Y&es to All';
  26.  
  27.   SColorPrefix = 'Color';
  28.   SColorTags = 'ABCDEFGHIJKLMNOP';
  29. {$ENDIF}
  30.  
  31. implementation
  32.  
  33. end.
  34.